home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows Expert
/
Windows Expert.iso
/
program
/
jfklib.zip
/
MDIDEMO.HPP
< prev
next >
Wrap
C/C++ Source or Header
|
1991-05-11
|
548b
|
36 lines
/*
MDIDEMO.HPP - (C) 1991 by Joachim Kainz 'On a mission from Bhudda'
*/
#if !defined (__HELLO_HPP)
#define __HELLO_HPP 1
#include <mdi.hpp>
#include "mdidemo.h"
class MDIDEMO : public MDI
{
protected:
METHOD WMCommand (WORD wID, WORD wMsg, HWND hCtl);
public:
MDIDEMO (int nShow = SW_NORMAL);
};
class DEMOCHILD : public MDICHILD
{
protected:
static WORD wCount;
PSTR pTitle;
HFONT hFont;
METHOD WMPaint ();
METHOD WMDestroy ();
public:
DEMOCHILD ();
};
#endif